home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Archives
/
GNU
/
sas_unix_lib.lha
/
unix
/
include
/
grp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-07-09
|
296 b
|
13 lines
#ifndef _GRP_H
#define _GRP_H
struct group {
char *gr_name; /* name of the group */
char *gr_passwd; /* encrypted password of the group */
gid_t gr_gid; /* numerical group ID */
char **gr_mem; /* null-terminated array of pointers to the
individual member names */
};
#endif